home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 July: Technology Seed / ADC Seed CD - July 1999.toast / Carbon SDK 1.0d10c3 / Sample Code / AppearanceSample / ProxyDialog.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-05-01  |  900 b   |  44 lines  |  [TEXT/CWIE]

  1. /*
  2.     File:        ProxyDialog.h
  3.  
  4.     Contains:    xxx put contents here xxx
  5.  
  6.     Version:    xxx put the technology version here xxx
  7.  
  8.     Copyright:    © 1998 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     File Ownership:
  11.  
  12.         DRI:                Matt Ackeret
  13.  
  14.         Other Contact:        xxx put alternate contact (ownerπs functional manager) here xxx
  15.  
  16.         Technology:            xxx put the technology group name here xxx
  17.  
  18.     Writers:
  19.  
  20.         (MAA)    Matt Ackeret
  21.  
  22.     Change History (most recent first):
  23.  
  24.          <1>     1/29/98    MAA        First checked in.
  25. */
  26.  
  27. #pragma once
  28.  
  29. #include "BaseDialog.h"
  30.  
  31. void HandleProxyDrag(WindowPtr theWindow, EventRecord *event);
  32.  
  33. class ProxyDialog : public BaseDialog
  34. {
  35.     public:
  36.             ProxyDialog( SInt16 resID );
  37.         virtual ~ProxyDialog();
  38.         virtual void DoDragClick(EventRecord *event);
  39.     private:
  40.         virtual void DoAddProxyIcon(Boolean fromAlias);
  41.         virtual    void UpdateContentIcon(void);
  42.     protected:
  43.         virtual void        HandleItemHit( SInt16 item );        
  44. };